home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 4765 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  997 b 

  1. Path: huey.cadvision.com!usenet
  2. From: pod@cadvision.com (Prince of Darkness)
  3. Newsgroups: comp.lang.asm.x86,alt.msdos.programmer,comp.os.msdos.programmer,comp.lang.c
  4. Subject: Re: Various Questions for DOS Programming...HELP NEEDED
  5. Date: Tue, 06 Feb 1996 21:55:59 GMT
  6. Organization: Domain of Darkness
  7. Message-ID: <4f8ivh$c24@huey.cadvision.com>
  8. References: <4f172i$iq0@neptune.cs.trinity.edu>
  9. NNTP-Posting-Host: cad153.cadvision.com
  10. X-Newsreader: Forte Free Agent 1.0.82
  11.  
  12. trauschu@cs.trinity.edu (Megaman) wrote:
  13. >(3) What is the best way to perform a file "COPY" instruction?  Should I make
  14. >a call to system(), or should I try to make my program more internal by
  15. >writing my own "COPY" procedure?  If so, what is teh best way to do this?
  16.  
  17. ------- Well, I can help you with this one. THe best way to make your
  18. own copy command is to open the two files [one for read and one for
  19. write] and read from the source file in large blocks, say 32 or 64K.
  20. Then write those blocks to the destination file.
  21.  
  22.  
  23.